home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / df8txt.zip / MEMOPAD.TXT < prev    next >
Text File  |  1991-09-30  |  46KB  |  1,453 lines

  1. ; ------------------------ MEMOPAD.TXT ---------------------
  2. ;
  3. ; This is the help text file for the MEMOPAD application. It 
  4. ; includes the help text that a D-Flat application would use 
  5. ; for the user interface.
  6. ;
  7. ; There can be a help window with a helptag name for each
  8. ; command in commands.h, each menu label on the menu bar 
  9. ; as defined in menus.c, and each dialog box name in dialogs.c
  10. ;
  11. ; There can be other help windows as well. Some of them will
  12. ; be displayed as the result of hypertext and definition key 
  13. ; words embedded in the help text of other help windows. Others
  14. ; can be implemented from within an application software system.
  15. ;
  16. ; Following is the format for a help window:
  17. ;
  18. ; ┌── (1st column of each line)
  19. ; 
  20. ; ; anything with a semicolon in the 1st column is a comment
  21. ; <helptag>                 (names the help window)
  22. ; [<<]<helptag>             (names the previous window in chain)
  23. ; [>>]<helptag>             (names the next window in chain)
  24. ; Help Window Title         (displays in window's title bar)
  25. ; Help text follows until next helptag occurs
  26. ; Hypertext reference  [..keyword]<helptag> embedded in text
  27. ; Definition reference [**keyword]<helptag> embedded in text
  28. ; <helptag>                 (names another window)
  29. ;
  30. ; Notes: 
  31. ;   1. A hypertext reference, when selected, causes the 
  32. ;      associated help window named by the <helptag> to 
  33. ;      become the active help window.
  34. ;   2. A definition reference, when selected, displays
  35. ;      a momentary window with the text of the associated
  36. ;      help window named by the <helptag>. The window 
  37. ;      closes when the user releases the Enter key or
  38. ;      mouse button.
  39. ;   3. A definition window has no title.
  40. ;   4. The last window is followed by the <end> helptag.
  41. ;   5. The window's height and width adjust to the text.
  42. ;   6. The [..], [**], and <helptags> do not display and
  43. ;      do not figure in the width of the line in which 
  44. ;      they occur.
  45. ;
  46. ; -----------------------------------------
  47. <Application>
  48. [<<]<MEMOPAD>
  49. [>>]<Menubar>
  50. Application Window
  51. The Application Window is the desktop for the 
  52. application.
  53.  
  54. The Application window contains the application's 
  55. [..Document Windows]<docwindow>. Before you open any documents,
  56. the Application window is empty.
  57.  
  58. The application window has an [..Action Bar]<Menubar> just below
  59. its [..Title Bar]<titlebar> and a [..Status Bar]<statusbar> at the bottom.
  60.  
  61. Note that there might not be a title or status bar
  62. depending on the [..Display]<ID_DISPLAY> option on the [..Options]<Options>
  63. menu.
  64. ; -----------------------------------------
  65. <MEMOPAD>
  66. [>>]<Application>
  67. The MEMOPAD Application
  68. MEMOPAD is a multi-window notepad program that
  69. demonstrates the programmer's [**API]<API> to the D-Flat
  70. Common User Access interface library.
  71. ; -----------------------------------------
  72. <MEMOPADDOC>
  73. [<<]<Application>
  74. The MEMOPAD Document Window
  75. This [..Document Window]<docwindow> is a basic notepad text editor. You can 
  76. have many of these windows open at one time.
  77. ; -----------------------------------------
  78. <docwindow>
  79. Document Window
  80. A Document Window contains the data that you work
  81. on. It displays within the [..Application Window]<Application> and
  82. consists of these parts:
  83.  
  84.   [..Client Area]<client>
  85.   [..Border]<border>
  86.   [..Title Bar]<titlebar>
  87.   [..Status Bar]<statusbar>
  88.   [..Scroll Bars]<scrollbar>
  89.   [..Control Box]<controlbox>
  90.   [..Minimize Box]<minbox>
  91.   [..Maximize Box]<maxbox>
  92.   [..Restore Box]<restorebox>
  93.   [..Resize Box]<sizebox>
  94.  
  95. ; -----------------------------------------
  96. <client>
  97. [<<]<docwindow>
  98. [>>]<border>
  99. Client Area
  100. The Client Area is the space inside the window's
  101. borders where the application's data values are
  102. displayed and manipulated.
  103. ; -----------------------------------------
  104. <border>
  105. [<<]<client>
  106. [>>]<titlebar>
  107. Border
  108. The Border is the frame around a window. When the
  109. window has the focus, the border is a double line.
  110. When a different window has the focus, the border
  111. is a single line.
  112.  
  113. The window's [..Scroll Bars]<scrollbar>, if any, are positioned
  114. in the right and bottom parts of the border.
  115. ; -----------------------------------------
  116. <titlebar>
  117. [<<]<border>
  118. [>>]<statusbar>
  119. Title Bar
  120. The Title Bar is at the top of the window and 
  121. contains the window's title. When the window
  122. has the focus, the title is highlighted. The
  123. Title Bar includes these items as well:
  124.  
  125.   [..Control Box]<controlbox>
  126.   [..Minimize Box]<minbox>
  127.   [..Maximize Box]<maxbox>
  128.   [..Restore Box]<restorebox> 
  129.  
  130. You can move the window with the mouse by clicking
  131. the title bar and dragging the window to its new
  132. location.
  133. ; -----------------------------------------
  134. <statusbar>
  135. [<<]<titlebar>
  136. [>>]<scrollbar>
  137. Status Bar
  138. The Status Bar is at the bottom of the application window.
  139. It displays the time and brief contextual messages about
  140. the menus and other application-dependent features.
  141. ; ----------------------------------------- 
  142. <scrollbar>
  143. [<<]<statusbar>
  144. [>>]<controlbox>
  145. Scroll Bars
  146. You use Scroll Bars to scroll a window's data with the
  147. mouse. A window can have one or two Scroll Bars - one
  148. at the right and one at the bottom parts of the
  149. window's Border. The Scroll Bar at the right scrolls
  150. the document's data up and down.  The Scroll Bar on
  151. the bottom scrolls the window's data right and left.
  152.  
  153. To scroll a window a line at a time, click the arrow
  154. tokens at either end of the Scroll Bar. The Scroll Bar
  155. includes a slider box that indicates the relative
  156. position of the window's display with respect to the
  157. total document. You can page to an approximate position
  158. within the document by clicking inside the Scroll Bar.
  159. You can drag the slider box in either direction to
  160. scroll the document.
  161. ; -----------------------------------------
  162. <controlbox>
  163. [<<]<scrollbar>
  164. [>>]<minbox>
  165. Control Box
  166. The Control Box is indicated by the character (≡) at
  167. the left end of the window's [..Title Bar]<titlebar>. You can
  168. click it to select the System Menu or double click
  169. it to close the window.
  170. ; -----------------------------------------
  171. <minbox>
  172. [<<]<controlbox>
  173. [>>]<maxbox>
  174. Minimize Box
  175. The Minimize Box is the  token at the right 
  176. end of the window's [..Title Bar]<titlebar>.
  177.  
  178. When you click on the Minimize Box, the window
  179. is reduced to an icon at the bottom of the
  180. [..Application Window]<Application>
  181. ; -----------------------------------------
  182. <maxbox>
  183. [<<]<minbox>
  184. [>>]<restorebox>
  185. Maximize Box
  186. The Maximize Box is the  token at the right 
  187. end of the window's [..Title Bar]<titlebar>.
  188.  
  189. When you click on the Maximize Box, the window
  190. grows to occupy the entire [..Client Area]<client> of the
  191. [..Application Window]<Application>
  192. ; -----------------------------------------
  193. <restorebox>
  194. [<<]<maxbox>
  195. [>>]<sizebox>
  196. Restore Box
  197. The Restore Box is the  token character at the right
  198. end of a minimized window's [..Title Bar]<titlebar> and the  token
  199. character at the right end of a maximized window's
  200. Title Bar. You click the Restore Box to restore the
  201. window to the position and size it had before it was
  202. minimized or maximized.
  203. ; -----------------------------------------
  204. <sizebox>
  205. [<<]<restorebox>
  206. Resize Box
  207. The Resize Box is the lower right corner of the
  208. window's border. To change the window's size,
  209. drag the Resize Box. The window's upper left
  210. coordinates remain the same, and the lower right
  211. coordinates change as you drag the mouse around.
  212. ; -----------------------------------------
  213. <Menubar>
  214. [<<]<application>
  215. [>>]<Pulldowns>
  216. The Action Bar
  217. To select the action bar, do one of these:
  218.   1. Press F10
  219.   2. Press and release the Alt key
  220.   3. Press Alt+the letter that is highlighted 
  221.      in a menu's title on the action bar. The 
  222.      selected menu will pull down.
  223.   4. Click the action bar. If you click a 
  224.      pull-down menu selection's title, that 
  225.      menu will pull down.
  226.  
  227. To exit from the action bar and return to the
  228. document or application window, do one of these:
  229.   1. Press Esc
  230.   2. Press and release the Alt key
  231. ; -----------------------------------------
  232. ;
  233. ;  Following are the Help system windows
  234. ;
  235. ; -----------------------------------------
  236. <HelpHelp>
  237. [<<]<Help>
  238. [>>]<ExtHelp>
  239. Help for Help
  240. Getting Into the Help System
  241. ----------------------------
  242. There are three ways to get into the Help system:
  243.  
  244.  1. Execute commands on the [..Help]<Help> menu
  245.  2. Press F1
  246.  3. Press the Help command button on a dialog box.
  247.  
  248. Contextual Help (F1)
  249. --------------------
  250. The F1 key provides contextual help--help for the
  251. part of the application that currently has the
  252. focus. You can press F1 with the action bar selected, 
  253. a pull-down menu displayed, a field on a dialog box
  254. selected, or a document window in focus.
  255.  
  256. The Help Command Button
  257. -----------------------
  258. The Help command button on a dialog box displays
  259. information about the dialog box and its purpose.
  260. The help window that displays when you press F1 with
  261. a dialog box field selected relates to the field
  262. itself.
  263.  
  264. References to Other Help Windows
  265. --------------------------------
  266. A Help window can include a reference to another
  267. help window. That reference is highlighted like
  268. this: 
  269.  
  270.     [..Help]<Help>
  271.  
  272. You can Tab to the highlighted reference and press
  273. the Enter key to select the referenced help window.
  274. You can select it with the mouse by double-clicking
  275. on it.
  276.  
  277. Definitions
  278. -----------
  279. Some references, such as [**function key]<shortcut>, are
  280. definitions of terms. These definitions are
  281. highlighted the same as references. When you select
  282. the definition, a window displays in the upper left
  283. corner of the desktop. The window contains the
  284. definition of the selected term and stays in view
  285. until you release the Enter key or the mouse
  286. button.
  287.  
  288. Command Buttons on the Help Windows
  289. -----------------------------------
  290. Each help window contains these [..command buttons]<cmdbuttons>:
  291.  
  292.   Close  This button closes the help window and
  293.          exits from the help system.
  294.   Back   This button changes to the help window
  295.          that you viewed before the current one.
  296.   Prev   This button changes to the help window
  297.          that logically preceeds the current one.
  298.   Next   This button changes to the help window
  299.          that logically follows the current one.
  300.  
  301. Exiting from the Help System
  302. ----------------------------
  303. You exit from the Help system by closing the current
  304. help window in one of these three ways:
  305.  
  306.   1. Press the Esc key
  307.   2. Use the Close command button on the Help
  308.      window.
  309.   5. Double click the window's [..Control Box]<controlbox>.
  310.   4. Close the help window from its [..System Menu]<sysmenu>.
  311.  
  312. ; -----------------------------------------
  313. <ExtHelp>
  314. [<<]<HelpHelp>
  315. [>>]<KeysHelp>
  316. Extended Help
  317. The MEMOPAD program has few features and procedures
  318. that are not taken directly from the SAA/CUA
  319. interface that F-Flat implements. The [..Log Messages]<ID_LOG>
  320. and [..Display]<ID_DISPLAY> selections on the [..Options]<Options> menu are
  321. unique to MEMOPAD and would not necessarily be in
  322. an application. Some of the Display features would
  323. be useful to a user who is not developing D-Flat
  324. programs. Others, such as the [..Title]<ID_TITLE>, [..Border]<ID_BORDER>,
  325. [..Status Bar]<ID_STATUSBAR>, and [..Texture]<ID_TEXTURE> check boxes on the [..Display]<Display>
  326. dialog box, are to allow a programmer to see how
  327. the screen looks with these features enabled and
  328. disabled. 
  329. ; -----------------------------------------
  330. <KeysHelp>
  331. [<<]<ExtHelp>
  332. [>>]<HelpIndex>
  333. Keys Help
  334. From the Desktop
  335. ----------------
  336.   Alt+Hyphen      Open the desktop's [..SystemMenu]<sysmenu>.
  337.   F10 or Alt      Activate the [..ActionBar]<menubar>.
  338.   Esc             Deactivate the Action Bar.
  339.   Alt+letter      Open the associated [..Pull-down menu]<Pulldowns>.
  340.   Alt+F6          Change focus to another document.
  341.   Alt+X           Exit the application.
  342.  
  343. From a [..Document Window]<docwindow>
  344. ----------------------
  345.   Alt+Spacebar    Open the window's [..System Menu]<sysmenu>
  346.   Alt+S           Save the document to a disk file.
  347.  
  348. [..Edit Box]<editbox> Keys
  349. -----------
  350.   Arrow keys      Move the cursor one character.
  351.   Ctrl+arrow      Move the cursor one word.
  352.   Del             Delete character to the right of
  353.                   the cursor. If a [..block]<Block> is marked,
  354.                   delete the block.
  355.   Backspace       Delete character to the left of
  356.                   the cursor. If a block is marked,
  357.                   delete the block.
  358.   Alt+BackSpace   Undo the last block deletion.
  359.   PgUp/PgDn       Scroll forward and back one page.
  360.   Ctrl+PgUp/PgDn  Scroll horizontally one page.
  361.   Home/End        Move the cursor to the beginning
  362.                   and end of the line.
  363.   Ctrl+Home/End   Move the cursor to the beginning
  364.                   and end of the document.
  365.   Alt+P           Form a paragraph from the marked
  366.                   block. If no block is marked, form 
  367.                   a paragraph from the cursor 
  368.                   position to the next blank line.
  369.   Ins             Toggle Insert/Overstrike mode.
  370.   Tab             Tab to the next Tab Stop position.
  371.  
  372. [..Clipboard]<clipboard> Keys
  373. --------------
  374.   Shift+Del       [..Cut]<ID_CUT> the marked text to the
  375.                   Clipboard
  376.   Ctrl+Ins        [..Copy]<ID_COPY> the marked text to the
  377.                   Clipboard.
  378.   Shift+Ins       [..Paste]<ID_PASTE> the contents of the
  379.                   Clipboard into the document.
  380.  
  381. [..Dialog Box]<dialog> Keys
  382. ---------------
  383.   Tab             Move to the next control.
  384.   Shift+Tab       Move to the previous control.
  385.   Enter           Execute the control.
  386.   Esc             Close the Dialog Box with no
  387.                   action.
  388.  
  389. [..Listbox]<listbox> Keys
  390. ------------
  391.   Up/down arrows  Move the selection cursor
  392.   Ctrl+arrows     Select a group of entries.
  393.   Enter           Choose the selected entry
  394.                   or entries.
  395.   Shift+F8        Toggle Add mode.
  396.   Spacebar        In Add mode, select/deselect an  
  397.                   entry.
  398. ; -----------------------------------------
  399. <HelpIndex>
  400. [<<]<KeysHelp>
  401. Index of Help Titles
  402. Select (Tab then Enter or double-click) from these 
  403. titles to view the help screens related to each one.
  404.  
  405.   [..Application Window]<Application>
  406.   [..Action Bar]<Menubar>
  407.   [..Pull-down Menus]<Pulldowns>
  408.     [..The File Menu]<File>
  409.     [..The Edit Menu]<Edit>
  410.     [..The Search Menu]<Search>
  411.     [..The Utilities Menu]<Utilities>
  412.     [..The Options Menu]<Options>
  413.     [..The Window Menu]<Window>
  414.     [..The Help Menu]<Help>
  415.   [..Dialog Boxes]<Dialog>
  416.     [..The File Open Dialog Box]<FileOpen>
  417.     [..The Save As Dialog Box]<SaveAs>
  418.     [..The MsgBox Dialog Box]<MsgBox>
  419.     [..The Display Dialog Box]<Display>
  420.     [..The Windows Dialog Box]<Windows>
  421.     [..The Log Dialog Box]<Log>
  422.   [..The Help System]<Help>
  423.     [..Help for help...]<ID_HELPHELP>
  424.     [..Extended help...]<ID_EXTHELP>
  425.     [..Keys help...]<ID_KEYSHELP>
  426.     [..Help index...]<ID_HELPINDEX>
  427.     [..Reload Help Database]<ID_LOADHELP>
  428.  
  429. ; -----------------------------------------
  430. ;
  431. ;  Following are menu command help windows
  432. ;
  433. ; -----------------------------------------
  434. <ID_NEW>
  435. [<<]<File>
  436. [>>]<ID_OPEN>
  437. The New Command
  438. This command opens a new, untitled document
  439. window. An untitled document is one that has 
  440. not been given a file name. When you use the 
  441. [..Save]<ID_SAVE> or [..Save as]<ID_SAVEAS> command on the File menu the 
  442. document gets a file name.
  443. ; -----------------------------------------
  444. <ID_OPEN>
  445. [<<]<ID_NEW>
  446. [>>]<ID_SAVE>
  447. The Open Command
  448. This command opens an existing document and loads
  449. it into a window. You select the document by filling
  450. in the [..File Open]<FileOpen> dialog box.
  451. ; -----------------------------------------
  452. <ID_SAVE>
  453. [<<]<ID_OPEN>
  454. [>>]<ID_SAVEAS>
  455. The Save Command
  456. This command saves the document in the currently
  457. active document window into a disk file. The file
  458. name is the same as when the file was loaded. If
  459. the window contains an untitled document, this
  460. command works just like the [..Save as]<ID_SAVEAS> command.
  461. ; -----------------------------------------
  462. <ID_SAVEAS>
  463. [<<]<ID_SAVE>
  464. [>>]<ID_DELETEFILE>
  465. The Save As Command
  466. This command allows you to save the document in the
  467. currently active document window under a new file
  468. name. You specify the file's name by filling in the
  469. fields on the [..Save as]<SaveAs> dialog box. 
  470.  
  471. The new file name becomes the title of the
  472. currently active document window where the file is
  473. displayed.
  474. ; -----------------------------------------
  475. <ID_DELETEFILE>
  476. [<<]<ID_SAVEAS>
  477. [>>]<ID_PRINT>
  478. The Delete Command
  479. Use this command to delete the text file displayed
  480. in the active editbox window.
  481. ; -----------------------------------------
  482. <ID_PRINT>
  483. [<<]<ID_DELETEFILE>
  484. [>>]<ID_PRINTSETUP>
  485. The Print Command
  486. This command prints the document in the
  487. currently-selected document window.
  488. ; -----------------------------------------
  489. <ID_PRINTSETUP>
  490. [<<]<ID_PRINT>
  491. [>>]<ID_DOS>
  492. The Print Setup Command
  493. This command displays the [..Print Setup]<PrintSetup> dialog
  494. box to allow you to change the printer port
  495. and margins for the printout.
  496. ; -----------------------------------------
  497. <ID_DOS>
  498. [<<]<ID_PRINT>
  499. [>>]<ID_EXIT>
  500. The DOS Command
  501. This command "shells" out to DOS. You return to the
  502. application from DOS by executing the DOS exit
  503. command at the DOS command line. 
  504. ; -----------------------------------------
  505. <ID_EXIT>
  506. [<<]<ID_DOS>
  507. The Exit Command
  508. This command exits to DOS from the application. If
  509. there are any changed documents that you have not
  510. saved, the program will ask if you want to save
  511. them and allow you to do so, one at a time.
  512. ; -----------------------------------------
  513. <ID_UNDO>
  514. [<<]<Edit>
  515. [>>]<ID_CUT>
  516. The Undo Command
  517. This command "undoes" the most recent [..Delete]<ID_DELETETEXT> or
  518. [..Clear]<ID_CLEAR> command. The text that was deleted by one of
  519. these commands is written into the document at the
  520. current cursor location.
  521. ; -----------------------------------------
  522. <ID_CUT>
  523. [<<]<ID_UNDO>
  524. [>>]<ID_COPY>
  525. The Cut Command
  526. This command is active only when the current
  527. document window has a [..marked block]<Block>. The command
  528. deletes the text in the marked block, copies it to
  529. the [..Clipboard]<Clipboard>, and closes up the space in the
  530. document that the text previously occupied.
  531. ; ----------------------------------------- 
  532. <ID_COPY>
  533. [<<]<ID_CUT>
  534. [>>]<ID_PASTE>
  535. The Copy Command
  536. This command is active only when the current
  537. document window has a [..marked block]<Block>. The command
  538. copies the text in the marked block to the 
  539. [..Clipboard]<Clipboard>, and closes up the space in the document 
  540. that the text previously occupied.
  541. ; -----------------------------------------
  542. <ID_PASTE>
  543. [<<]<ID_COPY>
  544. [>>]<ID_CLEAR>
  545. The Paste Command
  546. This command is active only when the [..Clipboard]<Clipboard>
  547. contains text. The command inserts the text from the
  548. Clipboard into the currently active document window
  549. at the current cursor location.
  550. ; -----------------------------------------
  551. <ID_CLEAR>
  552. [<<]<ID_PASTE>
  553. [>>]<ID_DELETETEXT>
  554. The Clear Command
  555. This command is active only when the current
  556. document window has a [..marked block]<Block>. The command
  557. deletes the block of text, leaving empty space in
  558. the document where the text had been.
  559.  
  560. You can undo the text deletion with the
  561. [..Undo]<ID_UNDO> command.
  562. ; -----------------------------------------
  563. <ID_DELETETEXT>
  564. [<<]<ID_CLEAR>
  565. [>>]<ID_PARAGRAPH>
  566. The Delete Command
  567. This command is active only when the current
  568. document window has a [..marked block]<Block>. The command
  569. deletes the block of text, closing the space in the
  570. document where the text had been.
  571.  
  572. You can undo the text deletion with the
  573. [..Undo]<ID_UNDO> command.
  574. ; -----------------------------------------
  575. <ID_PARAGRAPH>
  576. [<<]<ID_DELETETEXT>
  577. The Paragraph Command
  578. This command reforms a paragraph beginning at the
  579. current keyboard cursor position. The end of the
  580. paragraph is the last line preceding the next blank
  581. line.
  582.  
  583. If a [..marked block]<Block> is defined, the
  584. Paragraph command forms a new paragraph from the
  585. block without regard to the cursor position.
  586. ; -----------------------------------------
  587. <ID_SEARCH>
  588. [<<]<Search>
  589. [>>]<ID_REPLACE>
  590. The Search Command
  591. This command opens the [..Search Text]<SearchText> Dialog Box to
  592. allow you to search the text for a
  593. matching string.
  594. ; -----------------------------------------
  595. <ID_REPLACE>
  596. [<<]<ID_SEARCH>
  597. [>>]<ID_SEARCHNEXT>
  598. The Replace Command
  599. This command opens the [..Replace Text]<ReplaceText> Dialog Box to
  600. allow you to search the text for a
  601. matching string and replace it with a 
  602. different text string.
  603. ; -----------------------------------------
  604. <ID_SEARCHNEXT>
  605. [<<]<ID_REPLACE>
  606. The Next Command
  607. This command continues the most recent [..Search]<ID_SEARCH>
  608. command beginning at the current cursor position.
  609. ; -----------------------------------------
  610. <ID_INSERT>
  611. [<<]<Options>
  612. [>>]<ID_WRAP>
  613. The Insert Toggle
  614. This [**toggle]<toggle> command turns the editor's insert mode
  615. on and off. When insert mode is on, the editor
  616. inserts the text that you write. Otherwise each
  617. character typed overwrites the one at the current
  618. cursor position.
  619. ; -----------------------------------------
  620. <ID_WRAP>
  621. [<<]<ID_INSERT>
  622. [>>]<ID_TABS>
  623. The Word Wrap Toggle
  624. This [**toggle]<toggle> command turns the editor's word wrap
  625. feature on and off. When word wrap is on, the editor
  626. will wrap words as you type at the right margin of
  627. the document window. When word wrap is off, the
  628. editor will scroll the display horizontally as you
  629. type beyond the right margin. 
  630. ; -----------------------------------------
  631. <ID_TAB?>
  632. [<<]<ID_WRAP>
  633. [>>]<ID_DISPLAY>
  634. The Tabs Command
  635. This command allows you to
  636. change the editor's tab settings.
  637. ; -----------------------------------------
  638. <ID_DISPLAY>
  639. [<<]<ID_TABS>
  640. [>>]<ID_LOG>
  641. The Display Command
  642. This command displays the [..Display]<Display> dialog box to
  643. allow you to modify the screen's colors and
  644. configuration.
  645. ; -----------------------------------------
  646. <ID_LOG>
  647. [<<]<ID_DISPLAY>
  648. [>>]<ID_SAVEOPTIONS>
  649. The Log Messages Command
  650. This command is used primarily for debugging. It
  651. opens the [..Log Message]<Log> dialog box to allow the
  652. programmer to select the D-Flat messages to log and
  653. to turn message logging on and off.
  654. ; -----------------------------------------
  655. <ID_SAVEOPTIONS>
  656. [<<]<ID_LOG>
  657. The Save Options Command
  658. This command saves the current options in a
  659. configuration file that the application reads when
  660. it first starts up.
  661. ; -----------------------------------------
  662. <ID_CLOSEALL>
  663. [<<]<Window>
  664. [>>]<ID_WINDOW>
  665. The Close All Command
  666. This command closes all the document windows on the
  667. desktop.
  668. ; -----------------------------------------
  669. <ID_WINDOW>
  670. [<<]<ID_CLOSEALL>
  671. The Open Window List
  672. The [..Window]<Window> menu displays a list of open document
  673. windows. You can select one of them as the current
  674. active window by selecting its title on the Window
  675. menu. When the menu first displays, the active
  676. window has a check mark (√) next to it.
  677. ; -----------------------------------------
  678. <ID_HELPHELP>
  679. [<<]<Help>
  680. [>>]<ID_EXTHELP>
  681. Help for Help
  682. This command describes how to use the Help system.
  683. ; -----------------------------------------
  684. <ID_EXTHELP>
  685. [<<]<ID_HELPHELP>
  686. [>>]<ID_KEYSHELP>
  687. Extended Help
  688. Extended Help displays information about the
  689. application.
  690. ; -----------------------------------------
  691. <ID_KEYSHELP>
  692. [<<]<ID_EXTHELP>
  693. [>>]<ID_HELPINDEX>
  694. Keys Help
  695. This command displays a help window that shows the
  696. keystrokes that you use to operate the application.
  697. ; -----------------------------------------
  698. <ID_HELPINDEX>
  699. [<<]<ID_KEYSHELP>
  700. [>>]<ID_LOADHELP>
  701. Help Index
  702. The Help index lists the subjects covered in the
  703. Help database. You can go directly to a subject from
  704. the index by selecting the subject's name. 
  705. ; -----------------------------------------
  706. <ID_LOADHELP>
  707. [<<]<ID_HELPINDEX>
  708. [>>]<ID_ABOUT>
  709. Reload Help Database
  710. This command allows you to reload the Help
  711. database. It is useful when you use the
  712. Memopad program to modify its Help database.
  713. You can change and save the MEMOPAD.TXT file,
  714. use this command to reload it, then use the
  715. Help system to view the results. Without this
  716. command, your changes would corrupt the
  717. current Memopad's picture of the database
  718. with respect to its pointers.
  719.  
  720. You must delete the MEMOPAD.HLP compressed
  721. help database in order for this program to
  722. load the most recent changes.
  723. ; -----------------------------------------
  724. <ID_ABOUT>
  725. [<<]<ID_LOADHELP>
  726. The About Command
  727. This command displays a message that tells you what
  728. the application is.
  729. ; -----------------------------------------
  730. <ID_FILENAME>
  731. [>>]<ID_FILES>
  732. The Filename Field
  733.  
  734. On the Open File dialog box:
  735.     Enter the name of the file you wish to
  736.     open into a document window, or enter
  737.     the file specification with wild cards
  738.     to display a list of files in the
  739.     [..Files]<ID_FILES> field.
  740.  
  741. On the Save As dialog box:
  742.     Enter the name with which you wish to
  743.     save the file.
  744. ; -----------------------------------------
  745. <ID_FILES>
  746. [<<]<ID_FILENAME>
  747. [>>]<ID_DRIVE>
  748. The Files Field
  749. Select a file from the listbox by using one
  750. of these methods:
  751.  
  752. Keyboard:  Move the selection cursor to
  753.            the file name and press Enter.
  754.  
  755. Mouse:     Double-click the file name.
  756. ; -----------------------------------------
  757. <ID_DRIVE>
  758. [<<]<ID_FILES>
  759. The Directories Field
  760. Use this listbox to select a different
  761. drive or subdirectory. Select a drive or
  762. subdirectory from the listbox by using one
  763. of these methods:
  764.  
  765. Keyboard:  Move the selection cursor to
  766.            the drive or subdirectory and 
  767.            press Enter.
  768.  
  769. Mouse:     Double-click the drive or
  770.            subdirectory.
  771. ; -----------------------------------------
  772. <ID_PRINTERPORT>
  773. [<<]<PrintSetup>
  774. [>>]<ID_LEFTMARGIN>
  775. The Printer Port Combo Box
  776. Use this combo box to change the printer
  777. port and to set the report's margins.
  778. ; -----------------------------------------
  779. <ID_LEFTMARGIN>
  780. [<<]<ID_PRINTERPORT>
  781. [>>]<ID_RIGHTMARGIN>
  782. The Left Margin Spin Button
  783. Change the left margin by increasing
  784. and decreasing the value in this 
  785. spin box.
  786. ; -----------------------------------------
  787. <ID_RIGHTMARGIN>
  788. [<<]<ID_LEFTMARGIN>
  789. [>>]<ID_TOPMARGIN>
  790. The Right Margin Spin Button
  791. Change the right margin by increasing
  792. and decreasing the value in this 
  793. spin box.
  794. ; -----------------------------------------
  795. <ID_TOPMARGIN>
  796. [<<]<ID_RIGHTMARGIN>
  797. [>>]<ID_BOTTOMMARGIN>
  798. The Top Margin Spin Button
  799. Change the top margin by increasing
  800. and decreasing the value in this 
  801. spin box.
  802. ; -----------------------------------------
  803. <ID_BOTTOMMARGIN>
  804. [<<]<ID_TOPMARGIN>
  805. The Bottom Margin Spin Button
  806. Change the bottom margin by increasing
  807. and decreasing the value in this 
  808. spin box.
  809. ; -----------------------------------------
  810. <ID_SEARCHFOR>
  811. [>>]<ID_REPLACEWITH>
  812. The Search For Text Entry Box
  813. Enter the text you want to search for in this
  814. text box. Press Enter or the OK command button
  815. to begin the search. Press Esc to forget it.
  816. Use the [..Match Upper/Lower Case Check Box]<ID_MATCHCASE> to
  817. select whether the search will match only if
  818. the case matches or if the search is insensitive
  819. to the case of the two strings.
  820. ; -----------------------------------------
  821. <ID_REPLACEWITH>
  822. [<<]<ID_SEARCHFOR>
  823. [>>]<ID_MATCHCASE>
  824. The Replace With Text Entry Box
  825. Enter the text string that will replace
  826. the matching text string in the
  827. [..Search For Text Entry Box]<ID_SEARCHFOR>.
  828. ; -----------------------------------------
  829. <ID_MATCHCASE>
  830. [<<]<ID_REPLACEWITH>
  831. [>>]<ID_REPLACEALL>
  832. The Match Upper/Lower Case Check Box
  833. Use this checkbox to select whether the search 
  834. will match only if the case matches or if the 
  835. search is insensitive to the case of the two 
  836. strings.
  837. ; -----------------------------------------
  838. <ID_REPLACEALL>
  839. [<<]<ID_MATCHCASE>
  840. The Replace Every Match Check Box
  841. Use this checkbox to select whether the search 
  842. will replace every match in the document.
  843. ; -----------------------------------------
  844. <ID_WINDOWLIST>
  845. The ID_WINDOWLIST Command
  846.  
  847.      ======== Text needed =========
  848.  
  849. ; -----------------------------------------
  850. <ID_TITLE>
  851. [<<]<Display>
  852. [>>]<ID_BORDER>
  853. The Title Check Box
  854. Select this Check Box to toggle the application
  855. window's title on and off. Without a title, the
  856. window also loses its [..Control Box]<controlbox>.
  857. ; -----------------------------------------
  858. <ID_BORDER>
  859. [<<]<ID_TITLE>
  860. [>>]<ID_STATUSBAR>
  861. The Border Check Box
  862. Select this Check Box to toggle the application
  863. window's border on and off. Without a border, the
  864. window also loses its [..Status Bar]<statusbar>.
  865. ; -----------------------------------------
  866. <ID_STATUSBAR>
  867. [<<]<ID_BORDER>
  868. [>>]<ID_TEXTURE>
  869. The Status Bar Check Box
  870. Select this Check Box to toggle the application
  871. window's [..Status Bar]<statusbar> on and off.
  872. ; -----------------------------------------
  873. <ID_TEXTURE>
  874. [<<]<ID_STATUSBAR>
  875. [>>]<ID_COLOR>
  876. The Texture Check Box
  877. Select this Check Box to toggle the application
  878. window's background texture on and off.
  879. ; -----------------------------------------
  880. <ID_COLOR>
  881. [<<]<ID_TEXTURE>
  882. [>>]<ID_MONO>
  883. The Color Option Button
  884. Select this option for a color display.
  885. ; -----------------------------------------
  886. <ID_MONO>
  887. [<<]<ID_COLOR>
  888. [>>]<ID_REVERSE>
  889. The Mono Option Button
  890. Select this option for a monochrome display.
  891. ; -----------------------------------------
  892. <ID_REVERSE>
  893. [<<]<ID_MONO>
  894. [>>]<ID_25LINES>
  895. The Reverse Option Button
  896. Select this option for a reverse monochrome
  897. display. You might find that this option
  898. works well with the LCD screens of some laptop
  899. computers, particularly when you turn off the
  900. [..Texture]<ID_TEXTURE> check box.
  901. ; -----------------------------------------
  902. <ID_25LINES>
  903. [<<]<ID_REVERSE>
  904. [>>]<ID_43LINES>
  905. The 25 Lines Option Button
  906. Use this button to select a 25-line display.
  907. ; -----------------------------------------
  908. <ID_43LINES>
  909. [<<]<ID_25LINES>
  910. [>>]<ID_50LINES>
  911. The 43 Lines Option Button
  912. Use this button to select a 43-line display.
  913. (EGA and VGA)
  914. ; -----------------------------------------
  915. <ID_50LINES>
  916. [<<]<ID_43LINES>
  917. The 50 Lines Option Button
  918. Use this button to select a 50-line display.
  919. (VGA only)
  920. ; -----------------------------------------
  921. <ID_LOGLIST>
  922. [<<]<Options>
  923. [>>]<ID_LOGGING>
  924. The Messages Listbox
  925. This is a list of D-Flat messages that
  926. you can log when the [..Logging]<ID_LOGGING> checkbox is
  927. selected. The list is a [..Multiple-Selection]<MultiSel>
  928. listbox. 
  929. ; -----------------------------------------
  930. <ID_LOGGING> [<<]<ID_LOGLIST> The Logging
  931. CheckBox This checkbox turns message 
  932. logging on and off. ;
  933. -----------------------------------------
  934. <TEXTBOX> The TEXTBOX Window Class
  935.  
  936.      ======== Text needed =========
  937.  
  938. ; -----------------------------------------
  939. <LISTBOX>
  940. The LISTBOX Window Class
  941.  
  942.      ======== Text needed =========
  943.  
  944. ; -----------------------------------------
  945. <EDITBOX>
  946. The EDITBOX Window Class
  947.  
  948.      ======== Text needed =========
  949.  
  950. ; -----------------------------------------
  951. <Pulldowns>
  952. [<<]<menubar>
  953. [>>]<File>
  954. Pull-down Menus
  955. Pull-down menus contain the commands to operate
  956. the program. Read about the [..Action Bar]<menubar> to see
  957. how to select the pull-down menus. Following
  958. is a list of the pull-down menus.
  959.  
  960.     [..The File Menu]<File>
  961.     [..The Edit Menu]<Edit>
  962.     [..The Search Menu]<Search>
  963.     [..The Options Menu]<Options>
  964.     [..The Window Menu]<Window>
  965.     [..The Help Menu]<Help>
  966.  
  967. The [..System Menu]<sysmenu> is another kind of pull-down menu.
  968. ; -----------------------------------------
  969. <File>
  970. [<<]<Pulldowns>
  971. [>>]<Edit>
  972. The File Menu
  973. The File menu contains commands that
  974. open, save, and print files. The menu
  975. also has the command that exits the
  976. program. Following are the commands
  977. and associated [**function keys]<shortcut>.
  978.  
  979.     [..New]<ID_NEW>
  980.     [..Open]<ID_OPEN>
  981.     [..Save]<ID_SAVE>     (Alt+S)
  982.     [..Save as]<ID_SAVEAS>
  983.     [..Print]<ID_PRINT>
  984.     [..Exit]<ID_EXIT>     (Alt+X or Alt+F4)
  985.  
  986. [**Inactive]<inactive> commands display in a dim font.
  987. ; -----------------------------------------
  988. <Edit>
  989. [<<]<File>
  990. [>>]<Search>
  991. The Edit Menu
  992. The Edit menu contains commands that support
  993. text editing. Following are the commands and 
  994. associated [**function keys]<shortcut>.
  995.  
  996.     [..Undo]<ID_UNDO>          (Alt+BS)
  997.     [..Cut]<ID_CUT>           (Shift+Del)
  998.     [..Copy]<ID_COPY>          (Ctrl+Ins)
  999.     [..Paste]<ID_PASTE>         (Shift+Ins)
  1000.     [..Clear]<ID_CLEAR>
  1001.     [..Delete]<ID_DELETETEXT>        (Del)
  1002.     [..Paragraph]<ID_PARAGRAPH>     (Alt+P)
  1003.  
  1004. [**Inactive]<inactive> commands display in a dim font.
  1005. ; -----------------------------------------
  1006. <Search>
  1007. [<<]<Edit>
  1008. [>>]<Utilities>
  1009. The Search Menu
  1010. The Search menu allows you to search the text
  1011. for a matching string. The commands are:
  1012.  
  1013.     [..Search]<ID_SEARCH>
  1014.     [..Next]<ID_SEARCHNEXT>    (F3)
  1015. ; -----------------------------------------
  1016. <Utilities>
  1017. [<<]<Search>
  1018. [>>]<Options>
  1019. The Utilities Menu
  1020. The Utilities Menu has two commands that
  1021. demonstrate the use of the PICTUREBOX window
  1022. class. The commands are:
  1023.  
  1024.     [..Calendar]<ID_CALENDAR>
  1025.     [..Bar Chart]<ID_BARCHART>
  1026. ; -----------------------------------------
  1027. <Options>
  1028. [<<]<Utilities>
  1029. [>>]<Window>
  1030. The Options Menu
  1031. The Options menu contains commands that let you
  1032. control the editor's behavior, the video display
  1033. characteristics, and whether to [**log]<logging> messages.
  1034. You can save the options in a configuration file.
  1035. Following are the commands on the Options menu.
  1036.  
  1037.     [..Insert]<ID_INSERT>     (Ins)
  1038.     [..Word wrap]<ID_WRAP>
  1039.     [..Tabs]<ID_TABS>
  1040.     [..Display]<ID_DISPLAY>
  1041.     [..Log Messages]<ID_LOG>
  1042.     [..Save Options]<ID_SAVEOPTIONS>
  1043. ; -----------------------------------------
  1044. <Window>
  1045. [<<]<Options>
  1046. [>>]<Help>
  1047. The Window Menu
  1048. The Window menu has no selections unless the
  1049. [..Application window]<Application> has one or more document
  1050. windows displayed. When documents are displayed,
  1051. the Window menu contains a [..Close All]<ID_CLOSEALL> command
  1052. and an entry for the first nine document windows. 
  1053. You can select a document window from the Window
  1054. menu. If the Application window has more than nine
  1055. document windows, the Window menu has the [**More Windows]<MoreWins>
  1056. command, which displays the [..Windows]<Windows> dialog box.
  1057. ; -----------------------------------------
  1058. <Help>
  1059. [<<]<Window>
  1060. The Help Menu
  1061. The Help menu provides information about the 
  1062. application and the desktop. The selections are:
  1063.  
  1064.     [..Help for help...]<ID_HELPHELP>
  1065.     [..Extended help...]<ID_EXTHELP>
  1066.     [..Keys help...]<ID_KEYSHELP>
  1067.     [..Help index...]<ID_HELPINDEX>
  1068.     [..About...]<ID_ABOUT>
  1069.  
  1070. ; -----------------------------------------
  1071. <sysmenu>
  1072. [<<]<Pulldowns>
  1073. [>>]<ID_SYSRESTORE>
  1074. The System Menu
  1075. Most windows have a system menu. If the window has a
  1076. System Menu, the window will have a [..Control Box]<controlbox>. You
  1077. can select the System Menu by clicking the control
  1078. box or by pressing Alt+Spacebar for the application
  1079. window's system menu and Alt+Hyphen for the system
  1080. menu of other windows. 
  1081.  
  1082. Following are the commands on the System Menu:
  1083.  
  1084.     [..Restore]<ID_SYSRESTORE>
  1085.     [..Move]<ID_SYSMOVE>
  1086.     [..Size]<ID_SYSSIZE>
  1087.     [..Minimize]<ID_SYSMINIMIZE>
  1088.     [..Maximize]<ID_SYSMAXIMIZE>
  1089.     [..Close]<ID_SYSCLOSE>
  1090.  
  1091. ; -----------------------------------------
  1092. <ID_SYSRESTORE>
  1093. [<<]<sysmenu>
  1094. [>>]<ID_SYSMOVE>
  1095. The Restore Command on the System Menu
  1096. This command restores a [..Minimized]<ID_SYSMINIMIZE> or [..Maximized]<ID_SYSMAXIMIZE>
  1097. window to the size and position it had before it
  1098. was minimized or maximized.
  1099.  
  1100. You can also restore a minimized or maximized 
  1101. window by clicking its [..Restore Box]<restorebox>.
  1102. ; -----------------------------------------
  1103. <ID_SYSMOVE>
  1104. [<<]<ID_SYSRESTORE>
  1105. [>>]<ID_SYSSIZE>
  1106. The Move Command on the System Menu
  1107. The Move command lets you move a window with the
  1108. keyboard. Select the command from the System Menu. A
  1109. movable window frame comes into view over the
  1110. window's border. Use the up, down, left, and right
  1111. arrow keys to move the frame to the new window
  1112. position. Press the Enter key when the movable frame
  1113. is where you want to move the window. Press the Esc
  1114. key to ignore the movement.
  1115.  
  1116. You can move a window with the mouse by clicking on
  1117. the window's [..Title Bar]<titlebar> and dragging the window to
  1118. the new location. 
  1119. ; -----------------------------------------
  1120. <ID_SYSSIZE>
  1121. [<<]<ID_SYSMOVE>
  1122. [>>]<ID_SYSMINIMIZE>
  1123. The Size Command on the System Menu
  1124. The Size command lets you re-size a window with the
  1125. keyboard. Select the command from the System Menu. 
  1126. A sizeable window frame comes into view over the
  1127. window's border. Use the up, down, left, and right
  1128. arrow keys to change the frame to the new window
  1129. size. Press the Enter key when the sizeable frame
  1130. is the size you want for the window. Press the Esc
  1131. key to ignore the size change.
  1132.  
  1133. You can re-size a window with the mouse by clicking
  1134. on the window border's [..Resize Box]<sizebox> and dragging the 
  1135. window to the new size.
  1136. ; -----------------------------------------
  1137. <ID_SYSMINIMIZE>
  1138. [<<]<ID_SYSSIZE>
  1139. [>>]<ID_SYSMAXIMIZE>
  1140. The Minimize Command on the System Menu
  1141. This command minimizes the window to an icon at the
  1142. bottom of the application window.
  1143.  
  1144. You can minimize a window with the mouse by clicking
  1145. on the window's [..Minimize Box]<minbox>.
  1146.  
  1147. The [..Restore]<ID_SYSRESTORE> command restores a minimized window to
  1148. the size and position it had before it was
  1149. minimized.
  1150. ; -----------------------------------------
  1151. <ID_SYSMAXIMIZE>
  1152. [<<]<ID_SYSMINIMIZE>
  1153. [>>]<ID_SYSCLOSE>
  1154. The Maximize Command on the System Menu
  1155. This command maximizes the window to occupy all of
  1156. the application window's client area.
  1157.  
  1158. You can maximize a window with the mouse by clicking
  1159. on the window's [..Maximize Box]<maxbox>.
  1160.  
  1161. The [..Restore]<ID_SYSRESTORE> command restores a maximized window to
  1162. the size and position it had before it was
  1163. maximized.
  1164. ; -----------------------------------------
  1165. <ID_SYSCLOSE>
  1166. [<<]<ID_SYSMAXIMIZE>
  1167. The Close Command on the System Menu
  1168. This command closes the window with which the System
  1169. Menu is associated.
  1170.  
  1171. You can also close the window by double-clicking the
  1172. [..Control Box]<controlbox> or pressing Ctrl+F4.
  1173. ; -----------------------------------------
  1174. ;
  1175. ;  Following are dialog box help windows
  1176. ;
  1177. ; -----------------------------------------
  1178. <Dialog>
  1179. [>>]<cmdbuttons>
  1180. Dialog Boxes
  1181. Dialog Boxes allow you to enter data into the
  1182. application. A Dialog Box consists of these
  1183. controls:
  1184.  
  1185.     [..Command Buttons]<cmdbuttons>
  1186.     [..Check Boxes]<checkboxes>
  1187.     [..Option Buttons]<optbuttons>
  1188.     [..Edit Boxes]<editboxes>
  1189.     [..List Boxes]<listboxes>
  1190.     [..Multiple-Selection Listboxes]<MultiSel>
  1191.     [..Combo Boxes]<combobox>
  1192.     [..Spin Buttons]<spinbutton>
  1193.  
  1194. Move from control to control by using the Tab key
  1195. or by pressing Alt+ the highlighted character in
  1196. the control's label. Execute a control by pressing
  1197. the Enter key. 
  1198.  
  1199. Exit the Dialog Box and accept its data entries by
  1200. executing the OK command button. 
  1201.  
  1202. Exit the Dialog Box and reject its data entries by
  1203. executing the Cancel command button. 
  1204. ; -----------------------------------------
  1205. <cmdbuttons>
  1206. [<<]<Dialog>
  1207. [>>]<checkboxes>
  1208. Command Buttons
  1209. Select a command button to execute its
  1210. command by using one of these procedures:
  1211.  
  1212.   1. Click the button.
  1213.   2. Press Alt+ the shortcut key.
  1214.   3. Tab to the button and press Enter.
  1215. ; -----------------------------------------
  1216. <checkboxes>
  1217. [<<]<cmdbuttons>
  1218. [>>]<optbuttons>
  1219. Check Boxes
  1220. A check box can be on [X] or off [ ].
  1221. Toggle the check box with one of these
  1222. procedures:
  1223.  
  1224.   1. Click the check box.
  1225.   2. Press Alt+ the shortcut key.
  1226. ; -----------------------------------------
  1227. <optbuttons>
  1228. [<<]<checkboxes>
  1229. [>>]<editboxes>
  1230. Option Buttons
  1231. Option buttons are in groups of 2 or
  1232. more. One option button in a group
  1233. is on () and the others are off ( ).
  1234. Select the option button with one of
  1235. these procedures:
  1236.  
  1237.   1. Click the option button.
  1238.   2. Press Alt+ the shortcut key.
  1239. ; -----------------------------------------
  1240. <editboxes>
  1241. [<<]<optbuttons>
  1242. [>>]<listboxes>
  1243. Edit Boxes
  1244.  
  1245.      ======== Text needed =========
  1246.  
  1247. ; -----------------------------------------
  1248. <listboxes>
  1249. [<<]<editboxes>
  1250. [>>]<MultiSel>
  1251. List Boxes
  1252.  
  1253.      ======== Text needed =========
  1254.  
  1255. ; -----------------------------------------
  1256. <MultiSel>
  1257. [<<]<listboxes>
  1258. [>>]<combobox>
  1259. Multiple-Selection Listboxes
  1260.  
  1261.      ======== Text needed =========
  1262.  
  1263. ; -----------------------------------------
  1264. <combobox>
  1265. [<<]<MultiSel>
  1266. [>>]<spinbutton>
  1267. Combo Boxes
  1268.  
  1269.      ======== Text needed =========
  1270.  
  1271. ; -----------------------------------------
  1272. <spinbutton>
  1273. [<<]<combobox>
  1274. Spin Buttons
  1275.  
  1276.      ======== Text needed =========
  1277.  
  1278. ; -----------------------------------------
  1279. <FileOpen>
  1280. The File Open Dialog Box
  1281.  
  1282.      ======== Text needed =========
  1283.  
  1284. ; -----------------------------------------
  1285. <SaveAs>
  1286. The Save As Dialog Box
  1287.  
  1288.      ======== Text needed =========
  1289.  
  1290. ; -----------------------------------------
  1291. <PrintSetup>
  1292. The Print Setup Dialog Box
  1293.  
  1294.      ======== Text needed =========
  1295.  
  1296. ; -----------------------------------------
  1297. <SearchText>
  1298. The Search Text Dialog Box
  1299.  
  1300.      ======== Text needed =========
  1301.  
  1302. ; -----------------------------------------
  1303. <ReplaceText>
  1304. The Replace Text Dialog Box
  1305.  
  1306.      ======== Text needed =========
  1307.  
  1308. ; -----------------------------------------
  1309. <MsgBox>
  1310. The MsgBox Dialog Box
  1311.  
  1312.      ======== Text needed =========
  1313.  
  1314. ; -----------------------------------------
  1315. <Display>
  1316. The Display Dialog Box
  1317.  
  1318.      ======== Text needed =========
  1319.  
  1320.     [..Title]<ID_TITLE>
  1321.     [..Border]<ID_BORDER>
  1322.     [..Status Bar]<ID_STATUSBAR>
  1323.     [..Texture]<ID_TEXTURE>
  1324.  
  1325.     [..Color]<ID_COLOR>
  1326.     [..Mono]<ID_MONO>
  1327.     [..Reverse]<ID_REVERSE>
  1328.  
  1329. ; -----------------------------------------
  1330. <Windows>
  1331. The Windows Dialog Box
  1332.  
  1333.      ======== Text needed =========
  1334.  
  1335. ; -----------------------------------------
  1336. <Log>
  1337. The Log Message Dialog Box
  1338.  
  1339.      ======== Text needed =========
  1340.  
  1341. ; -----------------------------------------
  1342. ;
  1343. ;  Following are keyword reference definition windows
  1344. ;
  1345. ; -----------------------------------------
  1346. <inactive>
  1347. An inactive menu command is one that is, for
  1348. the moment, not available. The command becomes
  1349. active at another time when conditions within
  1350. the program require or permit its use.
  1351. ; -----------------------------------------
  1352. <shortcut>
  1353. Function keys are key combinations that
  1354. you can press to execute a menu command
  1355. without selecting the pull-down menu 
  1356. itself. Not all menu commands have 
  1357. function keys. The most frequently used 
  1358. operations do.
  1359. ; -----------------------------------------
  1360. <logging>
  1361. The message log is a debug tool. You should
  1362. delete it from the system by turning off the
  1363. INCLUDE_LOGGING global definition in dflat.h.
  1364. You should then eliminate references to it in
  1365. the MEMOPAD.TXT help database.
  1366. ; -----------------------------------------
  1367. <MoreWins>
  1368. A menu can have only so many selections.
  1369. The length of the screen is the limiting
  1370. factor. The CUA standard defines nine
  1371. windows as the maximum number of windows
  1372. that the Window menu can display. The 
  1373. Windows menu has the More Windows command 
  1374. to provide a way for you to choose from
  1375. the rest of the document windows.
  1376. ; -----------------------------------------
  1377. <API>
  1378. Applications Program Interface (API):
  1379. The functions, messages, macros, and 
  1380. data structures that a programmer 
  1381. uses to interface with the processes 
  1382. of a function library.
  1383. ; -----------------------------------------
  1384. <Block>
  1385. Marking Text Blocks
  1386. Marked text blocks affect the operation of these
  1387. commands:
  1388.  
  1389.     [..Cut]<ID_CUT>
  1390.     [..Copy]<ID_COPY>
  1391.     [..Paste]<ID_PASTE>
  1392.     [..Clear]<ID_CLEAR>
  1393.     [..Delete]<ID_DELETETEXT>
  1394.     [..Paragraph]<ID_PARAGRAPH>
  1395.  
  1396. Mark a text block by using one of these operations:
  1397.  
  1398.    Keyboard:
  1399.    ---------
  1400.    Hold the Shift key down and move the
  1401.    keyboard cursor. The block will be marked in
  1402.    reverse video.
  1403.  
  1404.    To clear the marked block, release the Shift 
  1405.    key and press any text entry or cursor movement
  1406.    key.
  1407.  
  1408.    Mouse:
  1409.    ------
  1410.    Click on the first or last character of the 
  1411.    block. Hold the mouse button down and move 
  1412.    the mouse cursor around. The marked block
  1413.    will follow the mouse cursor.
  1414.  
  1415.    To clear the marked block, release the mouse
  1416.    cursor and click anywhere.
  1417.  
  1418. ; -----------------------------------------
  1419. <Clipboard>
  1420. The Clipboard
  1421. The Clipboard is a scratchpad where you can save
  1422. text that can be pasted into a different location
  1423. in the same or another document. You save text with
  1424. the [..Copy]<ID_COPY> and [..Cut]<ID_CUT> commands, and you paste text into
  1425. from the Clipboard into a document with the [..Paste]<ID_PASTE>
  1426. command. 
  1427. ; -----------------------------------------
  1428. <toggle>
  1429. A toggle command is one that is
  1430. either on or off. When it is on,
  1431. its command on the menu is preceded
  1432. by a check mark (√).
  1433. <ID_CALENDAR>
  1434. Calendar
  1435. This command displays a calendar to demonstrate
  1436. the use of the PICTUREBOX class to draw line
  1437. vectors.
  1438. <ID_BARCHART>
  1439. Bar Chart
  1440. This command displays a bar chart to demonstrate
  1441. the use of the PICTUREBOX class to draw bars.
  1442. <Calendar>
  1443. Calendar
  1444. This calendar is an example of a picture box
  1445. with line vectors. The PgUp and PgDn keys
  1446. will page through the months. You can close 
  1447. the window from the [..System Menu]<sysmenu>.
  1448. <BarChart>
  1449. Bar Chart
  1450. This window is an example of a bar chart. You 
  1451. can close the window from the [..System Menu]<sysmenu>.
  1452. <end>
  1453.